home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-263.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  93 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12337);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2003-0461", "CVE-2002-1319");
  13.  
  14.  name["english"] = "RHSA-2002-263: kernel";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   The kernel in Red Hat Linux Advanced Server 2.1 is vulnerable to a local
  21.   denial of service attack. Updated packages are available which address this
  22.   vulnerability.
  23.  
  24.   [Updated 28 August 2003]
  25.   Added CAN-2003-0461 to the list of security issues that were fixed by this
  26.   advisory (there are no changes to the packages themselves).
  27.  
  28.   The Linux kernel handles the basic functions of the operating system.
  29.   A vulnerability in the Linux kernel has been discovered in which a non-root
  30.   user can cause the machine to freeze. This kernel addresses the
  31.   vulnerability.
  32.  
  33.   Note: This bug is specific to the x86 architecture kernels only, and does
  34.   not affect ia64 or other architectures.
  35.  
  36.   In addition, /proc/tty/driver/serial reveals the exact number of
  37.   characters used in serial links, which could allow local users to obtain
  38.   potentially sensitive information such as password lengths.
  39.  
  40.   All users should upgrade to these errata packages, which are not vulnerable
  41.   to these issues.
  42.  
  43.   Thanks go to Christopher Devine for reporting the vulnerability on Bugtraq,
  44.   and Petr Vandrovec for being the first to supply a fix to the community.
  45.  
  46.  
  47.  
  48.  
  49. Solution : http://rhn.redhat.com/errata/RHSA-2002-263.html
  50. Risk factor : High';
  51.  
  52.  script_description(english:desc["english"]);
  53.  
  54.  summary["english"] = "Check for the version of the kernel packages";
  55.  script_summary(english:summary["english"]);
  56.  
  57.  script_category(ACT_GATHER_INFO);
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  60.  family["english"] = "Red Hat Local Security Checks";
  61.  script_family(english:family["english"]);
  62.  
  63.  script_dependencies("ssh_get_info.nasl");
  64.  
  65.  script_require_keys("Host/RedHat/rpm-list");
  66.  exit(0);
  67. }
  68.  
  69. include("rpm.inc");
  70. if ( rpm_check( reference:"kernel-BOOT-2.4.9-e.10", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75. if ( rpm_check( reference:"kernel-doc-2.4.9-e.10", release:"RHEL2.1") )
  76. {
  77.  security_hole(0);
  78.  exit(0);
  79. }
  80. if ( rpm_check( reference:"kernel-source-2.4.9-e.10", release:"RHEL2.1") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85.  
  86. if ( rpm_exists(rpm:"kernel-", release:"RHEL2.1") )
  87. {
  88.  set_kb_item(name:"CAN-2003-0461", value:TRUE);
  89.  set_kb_item(name:"CVE-2002-1319", value:TRUE);
  90. }
  91.  
  92. set_kb_item(name:"RHSA-2002-263", value:TRUE);
  93.